home *** CD-ROM | disk | FTP | other *** search
/ Disney Interactive Software Sampler 1998 to 1999 / DISNEY99.ISO / Media / WACOM / Wacomgm2.dxr / 00002_Loop Menu.ls < prev    next >
Encoding:
Text File  |  1998-11-16  |  559 b   |  26 lines

  1. on enterFrame
  2.   global bover
  3.   set bover to 0
  4.   ShowButtonSensitive(47, 43)
  5.   ShowButtonSensitive(48, 44)
  6.   if rollOver(30) then
  7.     set bover to 1
  8.     set the visible of sprite 42 to 0
  9.     set the visible of sprite 15 to bover
  10.   else
  11.     set the visible of sprite 15 to 0
  12.     set the visible of sprite 42 to 1
  13.   end if
  14.   ShowButtonSensitive(31, 16)
  15.   ShowButtonSensitive(32, 17)
  16.   ShowButtonSensitive(33, 18)
  17.   ShowButtonSensitive(34, 19)
  18.   ShowButtonSensitive(35, 20)
  19.   ShowButtonSensitive(36, 21)
  20.   SetMyCursor(bover)
  21. end
  22.  
  23. on exitFrame
  24.   go(the frame)
  25. end
  26.